home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Graphics_Utils / PovRay_060 / POVRay3 / scripts / picconv.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1998-06-24  |  298 b   |  10 lines

  1. /*  Parse POV-Ray output filename into seperate path+name, extension */
  2.  
  3. parse ARG infile
  4. parse var infile basename '.' ext
  5.  
  6. address command 'povray3:utils/'ext'toppm 'infile' >t:tempic'
  7. address command 'povray3:utils/ppmtoilbm -24force t:tempic >'basename'.iff'
  8. address command 'delete t:tempic'
  9.  
  10.